home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / bison121.lha / bison-1.21 / getopt1.c < prev    next >
C/C++ Source or Header  |  1993-04-16  |  4KB  |  176 lines

  1. /* Getopt for GNU.
  2.    Copyright (C) 1987, 88, 89, 90, 91, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify it
  5.    under the terms of the GNU General Public License as published by the
  6.    Free Software Foundation; either version 2, or (at your option) any
  7.    later version.
  8.    
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.    
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21.  
  22. #include "getopt.h"
  23.  
  24. #if !__STDC__ && !defined(const) && IN_GCC
  25. #define const
  26. #endif
  27.  
  28. #include <stdio.h>
  29.  
  30. /* Comment out all this code if we are using the GNU C Library, and are not
  31.    actually compiling the library itself.  This code is part of the GNU C
  32.    Library, but also included in many other GNU distributions.  Compiling
  33.    and linking in this code is a waste when using the GNU C library
  34.    (especially if it is a shared library).  Rather than having every GNU
  35.    program understand `configure --with-gnu-libc' and omit the object files,
  36.    it is simpler to just do this in the source for each such file.  */
  37.  
  38. #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
  39.  
  40.  
  41. /* This needs to come after some library #include
  42.    to get __GNU_LIBRARY__ defined.  */
  43. #ifdef __GNU_LIBRARY__
  44. #include <stdlib.h>
  45. #else
  46. char *getenv ();
  47. #endif
  48.  
  49. #ifndef    NULL
  50. #define NULL 0
  51. #endif
  52.  
  53. int
  54. getopt_long (argc, argv, options, long_options, opt_index)
  55.      int argc;
  56.      char *const *argv;
  57.      const char *options;
  58.      const struct option *long_options;
  59.      int *opt_index;
  60. {
  61.   return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
  62. }
  63.  
  64. /* Like getopt_long, but '-' as well as '--' can indicate a long option.
  65.    If an option that starts with '-' (not '--') doesn't match a long option,
  66.    but does match a short option, it is parsed as a short option
  67.    instead.  */
  68.  
  69. int 
  70. getopt_long_only (argc, argv, options, long_options, opt_index)
  71.      int argc;
  72.      char *const *argv;
  73.      const char *options;
  74.      const struct option *long_options;
  75.      int *opt_index;
  76. {
  77.   return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
  78. }
  79.  
  80.  
  81. #endif    /* _LIBC or not __GNU_LIBRARY__.  */
  82.  
  83. #ifdef TEST
  84.  
  85. #include <stdio.h>
  86.  
  87. int
  88. main (argc, argv)
  89.      int argc;
  90.      char **argv;
  91. {
  92.   int c;
  93.   int digit_optind = 0;
  94.  
  95.   while (1)
  96.     {
  97.       int this_option_optind = optind ? optind : 1;
  98.       int option_index = 0;
  99.       static struct option long_options[] =
  100.       {
  101.     {"add", 1, 0, 0},
  102.     {"append", 0, 0, 0},
  103.     {"delete", 1, 0, 0},
  104.     {"verbose", 0, 0, 0},
  105.     {"create", 0, 0, 0},
  106.     {"file", 1, 0, 0},
  107.     {0, 0, 0, 0}
  108.       };
  109.  
  110.       c = getopt_long (argc, argv, "abc:d:0123456789",
  111.                long_options, &option_index);
  112.       if (c == EOF)
  113.     break;
  114.  
  115.       switch (c)
  116.     {
  117.     case 0:
  118.       printf ("option %s", long_options[option_index].name);
  119.       if (optarg)
  120.         printf (" with arg %s", optarg);
  121.       printf ("\n");
  122.       break;
  123.  
  124.     case '0':
  125.     case '1':
  126.     case '2':
  127.     case '3':
  128.     case '4':
  129.     case '5':
  130.     case '6':
  131.     case '7':
  132.     case '8':
  133.     case '9':
  134.       if (digit_optind != 0 && digit_optind != this_option_optind)
  135.         printf ("digits occur in two different argv-elements.\n");
  136.       digit_optind = this_option_optind;
  137.       printf ("option %c\n", c);
  138.       break;
  139.  
  140.     case 'a':
  141.       printf ("option a\n");
  142.       break;
  143.  
  144.     case 'b':
  145.       printf ("option b\n");
  146.       break;
  147.  
  148.     case 'c':
  149.       printf ("option c with value `%s'\n", optarg);
  150.       break;
  151.  
  152.     case 'd':
  153.       printf ("option d with value `%s'\n", optarg);
  154.       break;
  155.  
  156.     case '?':
  157.       break;
  158.  
  159.     default:
  160.       printf ("?? getopt returned character code 0%o ??\n", c);
  161.     }
  162.     }
  163.  
  164.   if (optind < argc)
  165.     {
  166.       printf ("non-option ARGV-elements: ");
  167.       while (optind < argc)
  168.     printf ("%s ", argv[optind++]);
  169.       printf ("\n");
  170.     }
  171.  
  172.   exit (0);
  173. }
  174.  
  175. #endif /* TEST */
  176.